SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 38449: Read Access Violation error in PROC BOXPLOT or PROC SHEWHART

DetailsAboutRate It

When the HAXIS= or VAXIS= option is used on the PLOT statement in PROC BOXPLOT to assign an axis definition and the corresponding AXIS statement contains a text description suboption after quoted text instead of before it, then PROC BOXPLOT might abend with the following error:

    ERROR:  Read Access Violation In Task [ BOXPLOT )

The same problem occurs with any of the chart statements in PROC SHEWHART when a similar AXIS statement is specified. Then the procedure might abend with:

    ERROR:  Read Access Violation In Task [ SHEWHART )

To circumvent the problem, place the text description suboption before the text string it modifies.

For example, the following is incorrect:

   axis1 label=('Group' justify=left);
   proc boxplot;
     plot measure*group / haxis=axis1;
   run;

Here is the correct code:

   axis1 label=(justify=left 'Group');
   proc boxplot;
     plot measure*group / haxis=axis1;
   run;


Operating System and Release Information

Product FamilyProductSystemSAS Release
ReportedFixed*
SAS SystemSAS/STATz/OS9.1 TS1M09.2 TS2M2
Microsoft® Windows® for 64-Bit Itanium-based Systems9.1 TS1M09.2 TS2M2
Microsoft Windows Server 2003 Datacenter 64-bit Edition9.1 TS1M09.2 TS2M2
Microsoft Windows Server 2003 Enterprise 64-bit Edition9.1 TS1M09.2 TS2M2
Microsoft Windows 2000 Advanced Server9.1 TS1M0
Microsoft Windows 2000 Datacenter Server9.1 TS1M0
Microsoft Windows 2000 Server9.1 TS1M0
Microsoft Windows 2000 Professional9.1 TS1M0
Microsoft Windows NT Workstation9.1 TS1M0
Microsoft Windows Server 2003 Datacenter Edition9.1 TS1M09.2 TS2M2
Microsoft Windows Server 2003 Enterprise Edition9.1 TS1M09.2 TS2M2
Microsoft Windows Server 2003 Standard Edition9.1 TS1M09.2 TS2M2
Microsoft Windows XP Professional9.1 TS1M09.2 TS2M2
64-bit Enabled AIX9.1 TS1M09.2 TS2M2
64-bit Enabled HP-UX9.1 TS1M09.2 TS2M2
64-bit Enabled Solaris9.1 TS1M09.2 TS2M2
HP-UX IPF9.1 TS1M09.2 TS2M2
Linux9.1 TS1M09.2 TS2M2
OpenVMS Alpha9.1 TS1M09.2 TS2M2
Tru64 UNIX9.1 TS1M09.2 TS2M2
* For software releases that are not yet generally available, the Fixed Release is the software release in which the problem is planned to be fixed.